home *** CD-ROM | disk | FTP | other *** search
/ NeXT Education Software Sampler 1992 Fall / NeXT Education Software Sampler 1992 Fall.iso / Programming / Source / PacMan / Makefile.postamble < prev    next >
Encoding:
Makefile  |  1992-07-24  |  317 b   |  12 lines

  1. install::
  2.     for i in $(OTHERSRCS) none ; do \
  3.       if [ $$i = none ] ; then continue; fi; \
  4.       tar cf - $$i | ( cd $(DSTROOT)$(INSTALLDIR)/$(NAME).app/ ; tar xfp -) ; \
  5.     done ;
  6.     chmod -R a+r $(DSTROOT)$(INSTALLDIR)/$(NAME).app
  7.     chmod 666 $(DSTROOT)$(INSTALLDIR)/$(NAME).app/highscores
  8.  
  9. clean::
  10.     rm -rf $(OTHER_GARBAGE)
  11.  
  12.